@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika&display=swap');

#locker-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13%;
    height: 9%;
    margin-left: 15%;
}

.sign-in, .sign-out {
    height: 45%;
    width: 100%;
    background-color: rgb(44, 71, 114);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1vw;
    border-radius: 5px;
    box-shadow: 0px 2px 3px black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-in {
    margin-bottom: 7px;
}

.sign-in:hover, .sign-out:hover, .vehicle1:hover, .vehicle2:hover {
    background-color: rgb(65, 109, 182);
}

#vehicles {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13%;
    height: 9%;
    margin-left: 15%;
}

.vehicle1, .vehicle2 {
    height: 45%;
    width: 100%;
    background-color: rgb(44, 71, 114);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1vw;
    border-radius: 5px;
    box-shadow: 0px 2px 3px black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle1 {
    margin-bottom: 7px;
}

#collections {
    display: flex;
    flex-direction: column;
    width: 15%;
    height: 15%;
    background-color: rgb(44, 71, 114);
    border-radius: 10px;
    position: absolute;
    bottom: 9%;
    right: 1%;
}

.icon {
    width: 100%;
    height: 15%;
    background-color: rgb(34, 58, 97);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.83vw;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.amount {
    color: white;
    font-family: 'Signika', sans-serif;
    font-size: 0.9375vw;
    padding: 5px;
}

.level {
    color: white;
    font-family: 'Signika', sans-serif;
    font-size: 0.9375vw;
    padding: 5px;
}

.collected {
    width: 80%;
    align-self: center;
    background-color: rgb(129, 129, 127);
    height: 15%;
    border-radius: 15px; /* It's going to look weird at low values, nothing I can do about it, if you don't like it set it to 0*/
    margin-top: 5%;
}

.progress-bar { 
    height: 100%;
    background-color: orange; /* It's going to look weird at low values, nothing I can do about it, if you don't like it set it to 0*/
    border-radius: 15px;
    width: 0%;
    transition: 0.3s;
}

.level-amount, .level-progress, .max-progress {
    text-align: center;
    font-family: 'Signika', sans-serif;
    font-size: 0.9375vw;
    color: white;
}